home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / lk_df.zip / NUMFLOPY.C < prev    next >
C/C++ Source or Header  |  1993-02-23  |  504b  |  20 lines

  1. #include <dos.h>
  2.  
  3. //===========================================================================
  4. //
  5. //      int number_floppy ( void )
  6. //
  7. //===========================================================================
  8.  
  9. unsigned short number_floppy ( void )
  10.  
  11. {
  12.         union REGS regs;
  13.  
  14.        int86 (0x11, ®s, ®s);
  15.     return( ((regs.x.ax & 0xc0) >> 6) + 1 );
  16. //       return ((regs.x.ax >> 6 & 3) + 1);
  17. }
  18.  
  19. //===========================================================================
  20.